home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2003 January
/
Disc 3
/
Amethyst.iso
/
live
/
lib
/
hotplug
/
hotplug-net
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-11-04
|
229 b
|
15 lines
#!/bin/sh
#
# ACTION=register|unregister
# INTERFACE=eth0...
case "$ACTION" in
register)
/sbin/ifup $INTERFACE
;;
unregister)
# We can't, the device already has been downed and freed.
# /sbin/ifdown $INTERFACE
;;
esac